home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / X11 / Xsession.d / 30x11-common_xresources < prev    next >
Text File  |  2008-06-24  |  899b  |  29 lines

  1. # $Id: 30x11-common_xresources 305 2005-07-03 18:51:43Z dnusinow $
  2.  
  3. # This file is sourced by Xsession(5), not executed.
  4.  
  5. # If xrdb (from xbase-clients) is installed, merge system-wide X resources.
  6. # Then merge the user's X resources, if the options file is so configured.
  7. if /usr/bin/which xrdb >/dev/null 2>&1; then
  8.   if [ -d "$SYSRESOURCES" ]; then
  9.     RESOURCEFILES=$(run-parts --list $SYSRESOURCES)
  10.     if [ -n "$RESOURCEFILES" ]; then
  11.       for RESOURCEFILE in $RESOURCEFILES; do
  12.         xrdb -merge $RESOURCEFILE
  13.       done
  14.     fi
  15.   fi
  16.  
  17.   if grep -qs ^allow-user-resources "$OPTIONFILE"; then
  18.     if [ -f "$USRRESOURCES" ]; then
  19.       xrdb -merge $USRRESOURCES
  20.     fi
  21.   fi
  22. else
  23.   # Comment out this command if you desire a legacy-free X environment, and find
  24.   # the warning spurious.
  25.   message "warning: xrdb command not found; X resources not merged."
  26. fi
  27.  
  28. # vim:set ai et sts=2 sw=2 tw=80:
  29.